1b2dbdb900a3fa54e1c83eb999f4f3347b5f2c27,Product/Production/Adapters/General/CONNECTDirectConfig/src/main/java/gov/hhs/fha/nhinc/directconfig/dao/impl/TrustBundleDaoImpl.java,TrustBundleDaoImpl,disassociateTrustBundleFromDomain,#number#number#,516

Before Change


                tx.commit();
            }
        } catch (NoResultException e) {
            DaoUtils.rollbackTransaction(tx);
            throw new ConfigurationStoreException("No association between Domain ID " + domainId
                + " and Trust Bundle ID" + trustBundleId, e);
        } catch (Exception e) {

After Change


            throw new ConfigurationStoreException(
                    "No association between Domain ID " + domainId + " and Trust Bundle ID" + trustBundleId, e);
        } catch (Exception e) {
            DaoUtils.rollbackTransaction(tx, e);
            throw new ConfigurationStoreException("Failed to delete trust bundle to domain relation.", e);
        } finally {
            DaoUtils.closeSession(session);